home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 12 / Cream of the Crop 12 (Part II) / Cream of the Crop 12 (Part II).iso / OS2 / VD08BIN.ZIP / usr / include / pm / filedlg.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-02-13  |  506 b   |  28 lines

  1. #ifndef _FILEDLG_H_
  2. #define _FILEDLG_H_
  3.  
  4. #ifndef _WINDOW_H_
  5. #include <pm/Window.h>
  6. #endif
  7.  
  8. @interface FileDlg : Object
  9. {
  10.   FILEDLG  fileDlg;
  11. }
  12.  
  13. - init;
  14. - initForOpen: (char *) aTitle withFilter: (char *) aFilter;
  15. - initForSaveAs: (char *) aTitle withFilter: (char *) aFilter;
  16. - free;
  17. - setTitle: (char *) aTitle;
  18. - setFilter: (char *) aFilter;
  19. - setFlags: (ULONG) aFlags;
  20. - setOKTitle: (char *) aTitle;
  21. - runModalFor: sender;
  22. - (char *) fileName;
  23. - (ULONG) result;
  24.  
  25. @end
  26.  
  27. #endif
  28.